home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 353_02 / flyaway.h < prev    next >
C/C++ Source or Header  |  1992-01-18  |  373b  |  14 lines

  1. // This file contains a few general purpose definitions to be used
  2. //  with several of the FLYAWAY adventure game classes.
  3.  
  4. #ifndef FLYAWAY_H
  5. #define FLYAWAY_H
  6.  
  7. #define FALSE 0
  8. #define TRUE  1
  9.  
  10. enum word {north = 1, east, south, west, drop, get,
  11.            look, inventory, read, buy, help, quit,
  12.            keys, candy, ticket, money, monitor, paper};
  13.  
  14. #endif